home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.2 Development Libraries / SGI IRIX 6.2 Development Libraries.iso / dist / complib.idb / usr / share / catman / p_man / cat3 / complib / DGESL.z / DGESL
Text File  |  1996-03-14  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4. DDDDGGGGEEEESSSSLLLL((((3333FFFF))))                                                            DDDDGGGGEEEESSSSLLLL((((3333FFFF))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      DGESL   - DGESL solves the double precision system A * X = B  or
  10.      TRANS(A) * X = B using the factors computed by DGECO or DGEFA.
  11.  
  12.  
  13. SSSSYYYYNNNNOOOOPPPPSSSSYYYYSSSS
  14.       SUBROUTINE DGESL(A,LDA,N,IPVT,B,JOB)
  15.  
  16. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  17.      On Entry
  18.  
  19.      AAAA DOUBLE PRECISION(LDA, N)
  20.         the output from DGECO or DGEFA.
  21.  
  22.      LLLLDDDDAAAA INTEGER
  23.         the leading dimension of the array  A .
  24.  
  25.      NNNN INTEGER
  26.         the order of the matrix  A .
  27.  
  28.      IIIIPPPPVVVVTTTT INTEGER(N)
  29.         the pivot vector from DGECO or DGEFA.
  30.  
  31.      BBBB DOUBLE PRECISION(N)
  32.         the right hand side vector.
  33.  
  34.      JJJJOOOOBBBB INTEGER
  35.         = 0         to solve  A*X = B ,
  36.         = nonzero   to solve  TRANS(A)*X = B  where
  37.         TRANS(A)  is the transpose.  On Return
  38.  
  39.      BBBB the solution vector  X . Error Condition
  40.  
  41.      AAAA division by zero will occur if the input factor contains a zero on the
  42.      diagonal.  Technically this indicates singularity but it is often caused
  43.      by improper arguments or improper setting of LDA .  It will not occur if
  44.      the subroutines are called correctly and if DGECO has set RCOND .GT. 0.0
  45.      or DGEFA has set INFO .EQ. 0 .  To compute  INVERSE(A) * C  where  C  is
  46.      a matrix with  P  columns
  47.         CALL DGECO(A,LDA,N,IPVT,RCOND,Z)
  48.         IF (RCOND is too small) GO TO ...
  49.         DO 10 J = 1, P
  50.         CALL DGESL(A,LDA,N,IPVT,C(1,J),0) 10 CONTINUE LINPACK.  This version
  51.      dated 08/14/78 .  Cleve Moler, University of New Mexico, Argonne National
  52.      Lab.  Subroutines and Functions BLAS DAXPY,DDOT
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.